List all words in the index that match an expression
C#
public long ListMatchingWords(
ref String toMatch,
long nLimit,
SearchFlags searchFlags,
long fuzziness
);
Parameters
Parameters |
Description |
---|---|
toMatch |
The expression to match |
nLimit |
Maximum number of words to find |
searchFlags |
Flags indicating how to match the words |
fuzziness |
If searchFlags includes dtsSearchFuzzy, use fuzziness to indicate the degree of fuzziness |
Returns
Number of words found.
See Also